home *** CD-ROM | disk | FTP | other *** search
/ BCI NET 2 / BCI NET 2.iso / archives / programming / languages / pcq_incl3v1.lha / Utils / DOSUtils.i < prev    next >
Encoding:
Text File  |  1994-04-15  |  378 b   |  19 lines

  1. {
  2.         DOSUtils.i for PCQ Pascal
  3.  
  4.         A couple of routines to make using DOS a little easier.
  5.         The source code for these routines is under Runtime/Extras.
  6. }
  7.  
  8. {$I   "Include:DOS/DOS.i"}
  9.  
  10. Function APTRtoBPTR(a : Address) : BPTR;
  11.     External;
  12.  
  13. Function BPTRtoAPTR(b : BPTR) : Address;
  14.     External;
  15.  
  16. Function GetFileHandle(var f : Text) : FileHandle;
  17.     External;
  18.  
  19.